home *** CD-ROM | disk | FTP | other *** search
/ The Very Best of Atari Inside / The Very Best of Atari Inside 1.iso / mint / mntinc20 / param.h < prev    next >
C/C++ Source or Header  |  1992-05-15  |  451b  |  16 lines

  1. #ifndef _PARAM_H
  2. #define _PARAM_H
  3.  
  4. #define    MAXPATHLEN    128        /* same as FILENAME_MAX in stdio.h */
  5. #define    NOFILE        20        /* same as OPEN_MAX in limits.h */
  6.  
  7. #ifdef __MINT__
  8. # define HZ        200        /* ticks/second reported by times() */
  9. # define NCARGS        1024        /* actually, we don't limit this */
  10. #else
  11. # define HZ        60        /* ticks/second reported by times() */
  12. # define NCARGS        126        /* max. no. of characters in argv */
  13. #endif
  14.  
  15. #endif /* _PARAM_H */
  16.